e548ce788d63014fdf243bf0025f01ff8cf0e27d,notification-application/src/main/java/com/smoketurner/notification/application/store/CursorStore.java,CursorStore,store,#String#String#number#,162
Before Change
final Location location = new Location(NAMESPACE, key);
final UpdateValue updateValue = new UpdateValue.Builder(location)
.withUpdate(update)
.withStoreOption(StoreValue.Option.RETURN_BODY, false).build();
LOGGER.debug("Updating key ({}) to value: {}", location, value);
try (Timer.Context context = storeTimer.time()) {
After Change
final Location location = new Location(NAMESPACE, key);
final UpdateValue updateValue = new UpdateValue.Builder(location)
.withUpdate(update)
.withStoreOption(StoreValue.Option.RETURN_BODY, false)
.withTimeout(RIAK_TIMEOUT_MILLIS).build();
LOGGER.debug("Updating key ({}) to value (async): {}", location, value);
try (Timer.Context context = storeTimer.time()) {